closedir
Close the directory handle
closedir()
function closes the directory handle.
Open a directory, read its contents, and close:
<?php $dir = "/images/" ; // Open a directory and read its contents: if ( is_dir ( $dir ) ) { if ( $dh = opendir ( $dir ) ) { while ( ( $file = readdir ( $dh ) ) !== false ) { echo "filename:" . $file . "<br>" ; } closedir ( $dh ) ; } } ?>
result:
filename: cat.gif filename: dog.gif filename: horse.gif
closedir ( dir_handle ) ;
parameter | describe |
---|---|
dir_handle |
Optional. Specifies the directory handle resource that was previously opened by opendir(). If this parameter is not specified, the last link opened by opendir() is used. |